bitkeeper revision 1.1615 (429c80cbvtnzneyg7GyZAmZlQNm-Yg)
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Tue, 31 May 2005 15:20:43 +0000 (15:20 +0000)
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Tue, 31 May 2005 15:20:43 +0000 (15:20 +0000)
XendDomainInfo.py:
  g/c vm_restore:  no longer used.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
tools/python/xen/xend/XendDomainInfo.py

index 2d9b52e67ccaf4097e902e0ae43c4c7ff3bb6edc..df02125d5c521ed9a9bedcecbadca4bbaea674e3 100644 (file)
@@ -192,28 +192,6 @@ def vm_recreate(savedinfo, info):
     vm.savedinfo = None
     return vm
 
-def vm_restore(src, progress=False):
-    """Restore a VM from a disk image.
-
-    src      saved state to restore
-    progress progress reporting flag
-    raises   VmError for invalid configuration
-    """
-    vm = XendDomainInfo()
-    ostype = "linux" #todo Set from somewhere (store in the src?).
-    restorefn = getattr(xc, "%s_restore" % ostype)
-    d = restorefn(state_file=src, progress=progress)
-    dom = int(d['dom'])
-    if dom < 0:
-        raise VmError('restore failed')
-    try:
-        vmconfig = sxp.from_string(d['vmconfig'])
-        config = sxp.child_value(vmconfig, 'config')
-    except Exception, ex:
-        raise VmError('config error: ' + str(ex))
-    vm.dom_construct(dom, config)
-    return vm
-    
 def dom_get(dom):
     """Get info from xen for an existing domain.